home *** CD-ROM | disk | FTP | other *** search
/ InterCD 1999 September / september_1999.iso / Site Building / Web Companion / Buttonscroll.aj_ / Buttonscroll.aj
Encoding:
Text File  |  1999-07-08  |  625 b   |  31 lines

  1. <script language="Javascript">
  2. <!--
  3. // original content taken from Nic's JavaScript Page with permission
  4. // lack of these three lines will result in copyright infringment
  5. // made by: Nic's JavaScript Page - http://www.javascript-page.com
  6.  
  7. var speed = #SPEED#
  8. var message = "#MSG#  "
  9.  
  10. var s = 0
  11. var l = message.length
  12. document.write("<form name='btn'><input type='button' "
  13. +"name='sc' value='"+ message +"'></form>")
  14.  
  15. function btnsc() {
  16.  
  17. document.btn.sc.value = message.substring(s,l) + message.substring(0,s)
  18. s++
  19.  
  20. if (s >= l) {
  21. s = 0
  22. }
  23.  
  24. setTimeout("btnsc()",speed)
  25. }
  26.  
  27. btnsc();
  28. //-->
  29. </script>
  30.  
  31.